NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name [Uptobox] Désactiver Temps d'attente avant le téléchargement
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Désactiver temps d'attente sur Uptobox
// @author eXo-Necro
// @include http://uptobox.com/*
// @include https://uptobox.com/*
// @grant none
// ==/UserScript==
var disabled_elements = document.querySelectorAll('td input[disabled]');
for (var i=0; i<disabled_elements.length; i++) disabled_elements[i].removeAttribute("disabled");